home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / puppy_red.swf / scripts / DefineSprite_350 / frame_20 / DoAction.as
Text File  |  2008-03-11  |  719b  |  41 lines

  1. function betting(score)
  2. {
  3.    ranValue = Math.floor(Math.random() * 100) + 1;
  4.    if(ranValue <= 5)
  5.    {
  6.       var sc = score * 3;
  7.       var result = 1;
  8.    }
  9.    else if(ranValue <= 20)
  10.    {
  11.       var sc = score / 2;
  12.       var result = 2;
  13.    }
  14.    else if(ranValue <= 25)
  15.    {
  16.       var sc = score / 5;
  17.       var result = 3;
  18.    }
  19.    else if(ranValue <= 40)
  20.    {
  21.       var sc = score * 2;
  22.       var result = 4;
  23.    }
  24.    else if(ranValue <= 70)
  25.    {
  26.       var sc = score - 500;
  27.       var result = 5;
  28.    }
  29.    else if(ranValue <= 100)
  30.    {
  31.       var sc = score;
  32.       var result = 6;
  33.    }
  34.    if(sc < 0)
  35.    {
  36.       sc = 0;
  37.    }
  38.    var rarray = [result,Math.floor(sc)];
  39.    return rarray;
  40. }
  41.